home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-25 | 703 b | 20 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: coord.h
- // Date: 2/25/95
- // Author: Bretton Wade
- //
- // Description: this file contains the definition of coord
- //
- //------------------------------------------------------------------------------
-
- #ifndef COORD
- #define COORD
-
- //------------------------------------------------------------------------------
- // types
- //------------------------------------------------------------------------------
- enum coord {X = 0, Y = 1, Z = 2, W = 3}; // coordinate access values for 2d and 3d tuples
-
- //------------------------------------------------------------------------------
-
- #endif //COORD